home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 28 / PC Gamer IT CD 28 1-2.iso / MEDIA / REVIEWS.DXR / Internal_62_clickableURL.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  487 b   |  25 lines

  1. on mouseEnter me
  2.   if the text of field "url" <> EMPTY then
  3.     cursor(280)
  4.   else
  5.     nothing()
  6.   end if
  7. end
  8.  
  9. on mouseLeave me
  10.   cursor(-1)
  11. end
  12.  
  13. on mouseDown me
  14.   if the text of field "url" <> EMPTY then
  15.     if the text of field "browserSelect" = EMPTY then
  16.       alert("You have not selected your browser yet.  You can do this now.")
  17.       go("config", "net")
  18.     else
  19.       open(the text of field "url", the text of field "browserSelect")
  20.     end if
  21.   else
  22.     nothing()
  23.   end if
  24. end
  25.